home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / sed_2_05.lha / sed-2.05 / alloca.ch next >
Text File  |  1995-01-19  |  477b  |  42 lines

  1. Changes for ALLOCA.C by Andreas Scherer, January 19, 1995.
  2.  
  3. @x l.23
  4. #ifdef HAVE_CONFIG_H
  5. #include "config.h"
  6. #endif
  7. @y
  8. #ifdef HAVE_CONFIG_H
  9. #include "config.h"
  10. #endif
  11.  
  12. #include <stdlib.h>
  13. @z
  14.  
  15. @x l.61
  16. #define    NULL    0
  17. @y
  18. #ifndef _AMIGA
  19. #define    NULL    0
  20. #endif
  21. @z
  22.  
  23. @x l.75
  24. extern pointer xmalloc ();
  25. @y
  26. extern pointer xmalloc (int);
  27. @z
  28.  
  29. @x l.100
  30. find_stack_direction ()
  31. @y
  32. find_stack_direction (void)
  33. @z
  34.  
  35. @x l.154
  36. alloca (size)
  37.      unsigned size;
  38. @y
  39. alloca (
  40.      unsigned size)
  41. @z
  42.